home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / boot / initrd.img-2.6.20-15-generic / initrd.img-2.6 / scripts / casper-functions next >
Encoding:
Text File  |  2007-05-25  |  388 b   |  22 lines

  1.  
  2. . /scripts/functions
  3.  
  4. # Override this so we don't call PROGRESS
  5. log_end_msg()
  6. {
  7.     if [ -x /sbin/usplash_write ]; then
  8.         /sbin/usplash_write "SUCCESS ok"
  9.     fi
  10.     _log_msg "Done."
  11. }
  12.  
  13. # Print a message and wait for enter
  14. log_wait_msg()
  15. {
  16.     if [ -x /sbin/usplash_write ]; then
  17.         /sbin/usplash_write "INPUTENTER $@"
  18.         read nunya < /dev/.initramfs/usplash_outfifo
  19.     fi
  20.     _log_msg "Waiting: $@ ..."
  21. }
  22.